UNPKG

sd-parsers

Version:

A library to read metadata from images created by Stable Diffusion

23 lines 588 B
/** * A library to read metadata from images created with Stable Diffusion. * * Basic usage: * ```typescript * import { ParserManager } from 'sd-parsers'; * * const parserManager = new ParserManager(); * * async function main() { * const promptInfo = await parserManager.parse('image.png'); * if (promptInfo) { * console.log(promptInfo); * } * } * ``` */ export { ParserManager } from './parserManager'; export { Eagerness } from './extractors'; export * from './data'; export * from './parsers'; export * from './exceptions'; //# sourceMappingURL=index.d.ts.map