add conditions to property actions manifest

This commit is contained in:
Mads Rasmussen
2023-03-13 20:50:48 +01:00
parent 520bda84ab
commit a4db26de7d
3 changed files with 5 additions and 5 deletions

View File

@@ -2,9 +2,9 @@ import type { ManifestElement } from './models';
export interface ManifestPropertyAction extends ManifestElement {
type: 'propertyAction';
meta: MetaPropertyAction;
conditions: ConditionsPropertyAction;
}
export interface MetaPropertyAction {
export interface ConditionsPropertyAction {
propertyEditors: string[];
}