Skip to content

Commit 9b6e3c0

Browse files
Build
1 parent a49f2c5 commit 9b6e3c0

File tree

4 files changed

+94
-88
lines changed

4 files changed

+94
-88
lines changed

dist/plugin/CodeBlock.vue.d.ts renamed to dist/plugin/VCodeBlock.vue.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { Props } from '../types';
2+
declare function copyCode(): void;
3+
declare function runCode(): void;
24
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
35
browserWindow: boolean;
46
cssPath: undefined;
@@ -85,7 +87,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
8587
theme: string | boolean;
8688
}, {}>, {
8789
label?(_: {}): any;
88-
tabs?(_: {}): any;
90+
tabs?(_: {
91+
copyCode: typeof copyCode;
92+
copyStatus: string;
93+
runCode: typeof runCode;
94+
}): any;
8995
copyButton?(_: {}): any;
9096
}>;
9197
export default _default;

dist/plugin/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default as CodeBlock } from './CodeBlock.vue';
1+
export { default as VCodeBlock } from './VCodeBlock.vue';

dist/vue-code-block.cjs.js

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)