1234567891011121314151617181920212223242526272829 |
- export declare const chooseImageProps: {
- sizeType: {
- type: ArrayConstructor;
- value: string[];
- };
- capture: {
- type: ArrayConstructor;
- value: string[];
- };
- };
- export declare const chooseVideoProps: {
- capture: {
- type: ArrayConstructor;
- value: string[];
- };
- compressed: {
- type: BooleanConstructor;
- value: boolean;
- };
- maxDuration: {
- type: NumberConstructor;
- value: number;
- };
- camera: {
- type: StringConstructor;
- value: string;
- };
- };
|