wuhp commited on
Commit
edbd3ed
·
verified ·
1 Parent(s): b30ebd6

Update types.ts

Browse files
Files changed (1) hide show
  1. types.ts +1 -1
types.ts CHANGED
@@ -55,7 +55,7 @@ export enum LayerType {
55
 
56
  export interface LayerParameter {
57
  name: string;
58
- type: 'number' | 'string' | 'select' | 'boolean';
59
  label: string;
60
  default: any;
61
  options?: string[]; // For select types
 
55
 
56
  export interface LayerParameter {
57
  name: string;
58
+ type: 'number' | 'string' | 'select' | 'boolean' | 'text';
59
  label: string;
60
  default: any;
61
  options?: string[]; // For select types