mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-29 06:21:38 +02:00
27 lines
459 B
TypeScript
27 lines
459 B
TypeScript
export interface AstroCollection {
|
|
name: string;
|
|
type: 'content' | 'data';
|
|
fields: AstroField[];
|
|
}
|
|
|
|
export interface AstroField {
|
|
name: string;
|
|
type:
|
|
| 'ZodString'
|
|
| 'ZodNumber'
|
|
| 'ZodBoolean'
|
|
| 'ZodArray'
|
|
| 'ZodEnum'
|
|
| 'ZodDate'
|
|
| 'ZodObject'
|
|
| 'datetime'
|
|
| 'email'
|
|
| 'url'
|
|
| 'image';
|
|
required: boolean;
|
|
defaultValue?: string;
|
|
options?: string[];
|
|
description?: string;
|
|
fields?: AstroField[];
|
|
}
|