ini/src/parserInterface.ts

8 lines
140 B
TypeScript

export interface ParserInterface {
parse(): this;
}
export interface ParserConstructor {
new (buffer: ArrayBuffer): ParserInterface;
}