refactor(ast): move custom types .d.ts file (#6931)

We have a few manually-defined TS types in `oxc_ast` crate. Move that `.d.ts` file out of `src` folder, and name it more descriptively.
This commit is contained in:
overlookmotel 2024-10-26 17:10:34 +00:00
parent 992699012f
commit fc07458280
2 changed files with 1 additions and 1 deletions

View file

@ -13,7 +13,7 @@ use crate::{
use super::define_generator;
const CUSTOM_TYPESCRIPT: &str = include_str!("../../../../crates/oxc_ast/src/ast/types.d.ts");
const CUSTOM_TYPESCRIPT: &str = include_str!("../../../../crates/oxc_ast/custom_types.d.ts");
pub struct TypescriptGenerator;