mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-17 03:04:27 +00:00
chore(version): 发布版本1.0.11
This commit is contained in:
parent
fc99b3d9ca
commit
0d82c7d7ba
@ -42,13 +42,13 @@ export interface Npm {
|
||||
[k: string]: any;
|
||||
}
|
||||
export interface PropsSection {
|
||||
props: {
|
||||
props: Array<{
|
||||
name: string;
|
||||
propType: PropType;
|
||||
description?: string;
|
||||
defaultValue?: any;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
}>;
|
||||
[k: string]: any;
|
||||
}
|
||||
export interface RequiredType {
|
||||
@ -57,7 +57,7 @@ export interface RequiredType {
|
||||
}
|
||||
export interface OneOf {
|
||||
type: 'oneOf';
|
||||
value: (string | number | boolean)[];
|
||||
value: Array<string | number | boolean>;
|
||||
isRequired?: boolean;
|
||||
[k: string]: any;
|
||||
}
|
||||
@ -81,19 +81,19 @@ export interface ObjectOf {
|
||||
}
|
||||
export interface Shape {
|
||||
type: 'shape';
|
||||
value: {
|
||||
value: Array<{
|
||||
name?: string;
|
||||
propType?: PropType;
|
||||
}[];
|
||||
}>;
|
||||
isRequired?: boolean;
|
||||
[k: string]: any;
|
||||
}
|
||||
export interface Exact {
|
||||
type: 'exact';
|
||||
value: {
|
||||
value: Array<{
|
||||
name?: string;
|
||||
propType?: PropType;
|
||||
}[];
|
||||
}>;
|
||||
isRequired?: boolean;
|
||||
[k: string]: any;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user