oxc/crates/oxc_transformer
Boshen 3efbbb2e1f
feat(ast): add "abstract" type to MethodDefinition and PropertyDefinition (#2536)
closes #2532

```
pub enum PropertyDefinitionType {
    PropertyDefinition,
    TSAbstractPropertyDefinition,
}

pub enum MethodDefinitionType {
    MethodDefinition,
    TSAbstractMethodDefinition,
}
```
2024-02-28 17:33:11 +08:00
..
examples feat(transformer): call build module record (#2529) 2024-02-28 14:35:35 +08:00
src feat(ast): add "abstract" type to MethodDefinition and PropertyDefinition (#2536) 2024-02-28 17:33:11 +08:00
Cargo.toml Publish crates v0.8.0 2024-02-26 19:01:51 +08:00