6 lines
204 B
TypeScript
6 lines
204 B
TypeScript
|
|
import IEventInit from '../IEventInit.js';
|
||
|
|
export default interface IHashChangeEventInit extends IEventInit {
|
||
|
|
newURL?: string;
|
||
|
|
oldURL?: string;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IHashChangeEventInit.d.ts.map
|