7 lines
216 B
TypeScript
7 lines
216 B
TypeScript
|
|
import IEventInit from '../IEventInit.js';
|
||
|
|
export default interface ICloseEventInit extends IEventInit {
|
||
|
|
code?: number;
|
||
|
|
reason?: string;
|
||
|
|
wasClean?: boolean;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=ICloseEventInit.d.ts.map
|