7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import { LanguageRegistration } from 'shiki';
|
|
|
|
declare function resolveLang(lang: string): Promise<LanguageRegistration[]>;
|
|
type ShikiResolveLang = typeof resolveLang;
|
|
|
|
export type { ShikiResolveLang };
|