supMDX/supMDX-env.d.ts

13 lines
234 B
TypeScript
Raw Normal View History

2022-11-04 21:44:29 +09:00
declare module '#config' {
2023-02-16 09:54:31 +09:00
import type {MDXConfig} from '@sup39/mdx-page';
type Config = MDXConfig & {
2022-11-04 21:44:29 +09:00
};
const config: Config;
export default config;
}
declare module '*.yaml' {
const data: any;
export default data;
}