17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
export interface LocationSensorState {
|
|
trigger: string;
|
|
state?: any;
|
|
length?: number;
|
|
hash?: string;
|
|
host?: string;
|
|
hostname?: string;
|
|
href?: string;
|
|
origin?: string;
|
|
pathname?: string;
|
|
port?: string;
|
|
protocol?: string;
|
|
search?: string;
|
|
}
|
|
declare const _default: () => LocationSensorState;
|
|
export default _default;
|