ini/src/parserInterface.ts

8 lines
140 B
TypeScript
Raw Normal View History

export interface ParserInterface {
parse(): this;
}
export interface ParserConstructor {
2022-12-01 13:51:23 -08:00
new (buffer: ArrayBuffer): ParserInterface;
}