forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~DAILER/fineui:master to master * commit 'b82dc6c7e9dceb99840203b619448805c93b5f67': 无JIRA 补充类型es6
Dailer
3 years ago
3 changed files with 17 additions and 2 deletions
@ -1,3 +1,3 @@ |
|||||||
export type _chinesePY = { |
export type _chinesePY = { |
||||||
makeFirstPY: (str: string, options: { ignoreMulti?: boolean, splitChar?: string }) => string |
makeFirstPY: (str: string, options?: { ignoreMulti?: boolean, splitChar?: string }) => string |
||||||
} |
} |
@ -0,0 +1,12 @@ |
|||||||
|
import { Layout } from '../layout'; |
||||||
|
|
||||||
|
export declare class TableLayout extends Layout { |
||||||
|
static xtype: string; |
||||||
|
|
||||||
|
props: { |
||||||
|
columnSize: number[]; |
||||||
|
rowSize: number[]; |
||||||
|
verticalAlign: 'middle' | 'top' | 'bottom' | 'stretch'; |
||||||
|
horizontalAlign: 'left' | 'right' | 'center' | 'stretch'; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue