@atomic-ehr/codegen 0.0.2-canary.20251120104848.a2998cc → 0.0.2-canary.20251120155638.6f020cd
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -476,13 +476,15 @@ declare function isConfig(obj: unknown): obj is Config;
|
|
|
476
476
|
*/
|
|
477
477
|
declare function defineConfig(config: Config): Config;
|
|
478
478
|
|
|
479
|
-
type
|
|
479
|
+
type FileSystemWriterOptions = {
|
|
480
480
|
outputDir: string;
|
|
481
|
+
logger?: CodegenLogger;
|
|
482
|
+
};
|
|
483
|
+
type WriterOptions = FileSystemWriterOptions & {
|
|
481
484
|
tabSize: number;
|
|
482
485
|
withDebugComment?: boolean;
|
|
483
486
|
commentLinePrefix: string;
|
|
484
487
|
generateProfile?: boolean;
|
|
485
|
-
logger?: CodegenLogger;
|
|
486
488
|
};
|
|
487
489
|
|
|
488
490
|
type TypeScriptOptions = {
|