45 lines
923 B
TypeScript
45 lines
923 B
TypeScript
declare const _default: ({
|
|
header: string;
|
|
content: string;
|
|
optionList?: undefined;
|
|
} | {
|
|
header: string;
|
|
optionList: ({
|
|
name: string;
|
|
description: string;
|
|
type: StringConstructor;
|
|
alias?: undefined;
|
|
} | {
|
|
name: string;
|
|
description: string;
|
|
alias: string;
|
|
type: StringConstructor;
|
|
} | {
|
|
name: string;
|
|
description: string;
|
|
type: BooleanConstructor;
|
|
alias?: undefined;
|
|
})[];
|
|
content?: undefined;
|
|
} | {
|
|
header: string;
|
|
optionList: {
|
|
name: string;
|
|
description: string;
|
|
alias: string;
|
|
type: BooleanConstructor;
|
|
}[];
|
|
content?: undefined;
|
|
} | {
|
|
header: string;
|
|
content: string[];
|
|
optionList?: undefined;
|
|
} | {
|
|
header: string;
|
|
content: {
|
|
example: string;
|
|
}[];
|
|
optionList?: undefined;
|
|
})[];
|
|
export default _default;
|