zsmj
3 years ago
3 changed files with 17 additions and 2 deletions
@ -1,3 +1,3 @@
|
||||
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