mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
dbec753ca1
swc_ecma_parser: - Support optional async class methods. (#1454) swc_ecma_transforms_compat: - Hoist import statements. (#1457)
4 lines
145 B
TypeScript
4 lines
145 B
TypeScript
export abstract class AbstractProviderDeliveryService {
|
|
// legal typescript method annotation
|
|
async prepareGetRequest?(): Promise<any>;
|
|
} |