mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-23 19:41:05 +02:00
#352 - Custom placeholders now support scripting
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export interface CustomPlaceholder {
|
||||
id: string;
|
||||
value?: string;
|
||||
script?: string;
|
||||
command?: string
|
||||
}
|
||||
@@ -118,7 +118,7 @@ export interface CustomScript {
|
||||
output?: "notification" | "editor";
|
||||
outputType?: string;
|
||||
type?: ScriptType;
|
||||
command?: CommandType;
|
||||
command?: CommandType | string;
|
||||
}
|
||||
|
||||
export interface PreviewSettings {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
export * from './BlockFieldData';
|
||||
export * from './Choice';
|
||||
export * from './ContentFolder';
|
||||
export * from './CustomPlaceholder';
|
||||
export * from './CustomTaxonomyData';
|
||||
export * from './DashboardData';
|
||||
export * from './DataFile';
|
||||
|
||||
Reference in New Issue
Block a user