mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* WIP * WIP * Add yaml plugin * Publish v0.0.1 * Updates * Start RSC plugin - not finished * Add readme * Updates * Add shell dirs for a few other plugins
9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
declare module "*.yml" {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
declare module "*.yaml" {
|
|
const content: any;
|
|
export default content;
|
|
}
|