mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-19 17:45:44 +02:00
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
export interface BaseFieldProps<T> {
|
|
label: string;
|
|
value: T | null;
|
|
description?: string;
|
|
required?: boolean;
|
|
}
|