chore(version): 发布版本1.0.11

This commit is contained in:
荣彬 2020-10-20 11:08:24 +08:00
parent fc99b3d9ca
commit 0d82c7d7ba

View File

@ -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;
}