-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3d5d84
commit ada6768
Showing
6 changed files
with
173 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export declare function escapeHtml(value: string): string; | ||
export declare function escapeHtml(value: string): string; | ||
//# sourceMappingURL=utils.d.ts.map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
import { Plugin } from 'vue'; | ||
declare const component: import("vue").DefineComponent<{ | ||
code: { | ||
type: StringConstructor; | ||
required: true; | ||
}; | ||
language: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
autodetect: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
ignoreIllegals: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}, { | ||
className: import("vue").ComputedRef<string>; | ||
highlightedCode: import("vue").ComputedRef<string>; | ||
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ | ||
code: string; | ||
language: string; | ||
autodetect: boolean; | ||
ignoreIllegals: boolean; | ||
} & {}>, { | ||
language: string; | ||
autodetect: boolean; | ||
ignoreIllegals: boolean; | ||
}>; | ||
declare const plugin: Plugin & { | ||
component: typeof component; | ||
}; | ||
export default plugin; | ||
import { Plugin } from 'vue'; | ||
declare const component: import("vue").DefineComponent<{ | ||
code: { | ||
type: StringConstructor; | ||
required: true; | ||
}; | ||
language: { | ||
type: StringConstructor; | ||
default: string; | ||
}; | ||
autodetect: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
ignoreIllegals: { | ||
type: BooleanConstructor; | ||
default: boolean; | ||
}; | ||
}, { | ||
className: import("vue").ComputedRef<string>; | ||
highlightedCode: import("vue").ComputedRef<string>; | ||
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ | ||
code: string; | ||
language: string; | ||
autodetect: boolean; | ||
ignoreIllegals: boolean; | ||
} & {}>, { | ||
language: string; | ||
autodetect: boolean; | ||
ignoreIllegals: boolean; | ||
}>; | ||
declare const plugin: Plugin & { | ||
component: typeof component; | ||
}; | ||
export default plugin; | ||
//# sourceMappingURL=vue.d.ts.map |
Oops, something went wrong.