@vulcan-sql/build
Version:
VulcanSQL package for building projects
12 lines (11 loc) • 439 B
TypeScript
import { SchemaData, SchemaReader } from '../../../models/index';
import { SchemaParserOptions } from '../../../options/index';
export interface FileSchemaReaderOptions {
folderPath: string;
}
export declare class FileSchemaReader extends SchemaReader {
private options;
constructor(options: SchemaParserOptions, config: any, moduleName: string);
readSchema(): AsyncGenerator<SchemaData>;
private getSchemaFilePaths;
}