UNPKG

@inlang/paraglide-js

Version:

[![NPM Downloads](https://img.shields.io/npm/dw/%40inlang%2Fparaglide-js?logo=npm&logoColor=red&label=npm%20downloads)](https://www.npmjs.com/package/@inlang/paraglide-js) [![GitHub Issues](https://img.shields.io/github/issues-closed/opral/paraglide-js?lo

12 lines 546 B
/** * Generates `.d.ts` files for the compiled Paraglide output using the TypeScript compiler. * * @param output - The generated compiler output keyed by relative file path. * @returns The generated declaration files keyed by relative path. * * @example * const declarations = await emitTsDeclarations(output); * // Merge them into the compiler output before writing to disk */ export declare function emitTsDeclarations(output: Record<string, string>): Promise<Record<string, string>>; //# sourceMappingURL=emit-ts-declarations.d.ts.map