File size: 361 Bytes
3171ebe | 1 2 3 4 5 6 7 8 9 10 11 12 | declare module "@citation-js/core";
declare module "@citation-js/plugin-bibtex";
declare module "@citation-js/plugin-csl";
declare module "@citation-js/plugin-doi";
// Playwright is optional - only available in Docker production image
declare module "playwright" {
export const chromium: {
launch(options?: Record<string, unknown>): Promise<any>;
};
}
|