mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-30 23:11:03 +02:00
7 lines
98 B
TypeScript
7 lines
98 B
TypeScript
|
|
|
|
export interface BaseFieldProps<T> {
|
|
label: string;
|
|
value: T | null;
|
|
required?: boolean;
|
|
} |