-
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.
(end) Export component individually (#11)
* Bump version in package-lock.json * Fix type file path Fix #7 * Upgrade to highlight.js 11 * Export component individually
- Loading branch information
1 parent
12a5769
commit e3d5d84
Showing
9 changed files
with
72 additions
and
21 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 +1,36 @@ | ||
import { Plugin } from 'vue'; | ||
declare const plugin: Plugin; | ||
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 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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