Files
bun.sh/packages/bun-plugin-yaml/modules.d.ts
Colin McDonnell a52715597a Add plugins for yaml & RSC (#2888)
* 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
2023-05-15 20:37:03 -07:00

9 lines
151 B
TypeScript

declare module "*.yml" {
const content: any;
export default content;
}
declare module "*.yaml" {
const content: any;
export default content;
}