TreasureTrails/node_modules/@mrleebo/prisma-ast/dist/printSchema.d.ts

10 lines
330 B
TypeScript
Raw Permalink Normal View History

2026-03-18 09:02:21 -05:00
import * as Types from './getSchema';
type Block = 'generator' | 'datasource' | 'model' | 'view' | 'enum' | 'type';
export interface PrintOptions {
sort?: boolean;
locales?: string | string[];
sortOrder?: Block[];
}
export declare function printSchema(schema: Types.Schema, options?: PrintOptions): string;
export {};