mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
6eac1b3f22
Move the api-gen pipeline into the shared-docs directory. PR Close #57241
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
// This definition file is a temporary workaround until the toolchain is able to read d.mts definition files
|
|
// TODO: delete this file when the toolchains supports .d.mts files
|
|
declare module 'shiki' {
|
|
function createHighlighter(params: {
|
|
themes: any[];
|
|
langs: string[];
|
|
cssVariablePrefix?: string;
|
|
defaultColor?: boolean;
|
|
}): unknown;
|
|
|
|
type HighlighterGeneric<BundledLangKeys, BundledThemeKeys> = any;
|
|
}
|