|
@@ -14,4 +14,10 @@ declare type SelectOptions<T = any> = {
|
|
|
|
|
|
declare type EmitType = (event: string, ...args: any[]) => void;
|
|
|
|
|
|
+declare interface RangePickerClass {
|
|
|
+ add(text: string, range: moment.Moment[]): this;
|
|
|
|
|
|
+ pick(range: string[]): this;
|
|
|
+
|
|
|
+ getRange(): Record<string, moment.Moment[]>;
|
|
|
+}
|