mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
style(components): update types to remove any
This commit is contained in:
18
packages/core/src/components.d.ts
vendored
18
packages/core/src/components.d.ts
vendored
@ -780,24 +780,24 @@ declare global {
|
||||
namespace JSXElements {
|
||||
export interface IonDatetimeAttributes extends HTMLAttributes {
|
||||
cancelText?: string;
|
||||
dayNames?: any;
|
||||
dayShortNames?: any;
|
||||
dayValues?: any;
|
||||
dayNames?: string[] | string;
|
||||
dayShortNames?: string[] | string;
|
||||
dayValues?: number[] | number | string;
|
||||
disabled?: boolean;
|
||||
displayFormat?: string;
|
||||
doneText?: string;
|
||||
hourValues?: any;
|
||||
hourValues?: number[] | number | string;
|
||||
max?: string;
|
||||
min?: string;
|
||||
minuteValues?: any;
|
||||
monthNames?: any;
|
||||
monthShortNames?: any;
|
||||
monthValues?: any;
|
||||
minuteValues?: number[] | number | string;
|
||||
monthNames?: string[] | string;
|
||||
monthShortNames?: string[] | string;
|
||||
monthValues?: number[] | number | string;
|
||||
pickerFormat?: string;
|
||||
pickerOptions?: PickerOptions;
|
||||
placeholder?: string;
|
||||
value?: string;
|
||||
yearValues?: any;
|
||||
yearValues?: number[] | number | string;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user