feat: Add in the new types of the file and the value

This commit is contained in:
Blu-J
2023-07-28 14:03:29 -06:00
parent ba248eee28
commit 2d52b39409
3 changed files with 22 additions and 11 deletions

View File

@@ -58,6 +58,10 @@ export interface ValueSpecTextarea extends WithStandalone {
/** Immutable means it can only be configed at the first config then never again */
immutable: boolean
}
export type FilePath = {
filePath: string
}
export interface ValueSpecNumber extends ListValueSpecNumber, WithStandalone {
required: boolean
default: number | null