Files
test/_node_modules/@mrleebo/prisma-ast/dist/printSchema.d.ts
2026-02-20 16:06:40 +09:00

10 lines
330 B
TypeScript

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 {};