codemirror-editor-vue3
Advanced tools
Comparing version 1.1.0-beta1 to 1.1.0-beta2
{ | ||
"name": "codemirror-editor-vue3", | ||
"description": "CodeMirror component for Vue3", | ||
"version": "1.1.0-beta1", | ||
"version": "1.1.0-beta2", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "files": [ |
@@ -1,32 +0,1 @@ | ||
declare interface Fn<T = any, R = T> { | ||
(...arg: T[]): R; | ||
} | ||
declare interface PromiseFn<T = any, R = T> { | ||
(...arg: T[]): Promise<R>; | ||
} | ||
declare type RefType<T> = T | null; | ||
declare type LabelValueOptions = { | ||
label: string; | ||
value: any; | ||
[key: string]: string | number | boolean; | ||
}[]; | ||
declare type EmitType = (event: string, ...args: any[]) => void; | ||
declare type TargetContext = "_self" | "_blank"; | ||
declare interface ComponentElRef<T extends HTMLElement = HTMLDivElement> { | ||
$el: T; | ||
} | ||
declare type ComponentRef<T extends HTMLElement = HTMLDivElement> = | ||
ComponentElRef<T> | null; | ||
declare type ElRef<T extends HTMLElement = HTMLDivElement> = Nullable<T>; | ||
declare type Nullable<T> = T | null; | ||
declare module "codemirror-editor-vue3"; | ||
export declare module "codemirror-editor-vue3"; |
42714
876