/** * An engine for generating TypeScript .d.ts files that provide type signatures * for non-TypeScript modules such as generated JavaScript or CSS. It can operate * in either a single-run mode or a watch mode. * * @packageDocumentation */ export { type ISourcePosition, type IDeclarationMapping, serializeDeclarationMap } from './DeclarationMap'; export { type ReadFile, type IGeneratedTypings, type ITypingsGeneratorBaseOptions, type ITypingsGeneratorOptionsWithoutReadFile, type ITypingsGeneratorOptions, type ITypingsGeneratorOptionsWithCustomReadFile, TypingsGenerator } from './TypingsGenerator'; export { type IStringValueTyping, type IStringValueTypings, type IExportAsDefaultOptions, type IStringValuesTypingsGeneratorBaseOptions, type IStringValuesTypingsGeneratorOptions, type IStringValuesTypingsGeneratorOptionsWithCustomReadFile, StringValuesTypingsGenerator } from './StringValuesTypingsGenerator'; //# sourceMappingURL=index.d.ts.map