(name: string | ts.Identifier)
| 25 | } |
| 26 | |
| 27 | export function identifier(name: string | ts.Identifier): ts.Identifier { |
| 28 | if (typeof name !== "string") { |
| 29 | return name; |
| 30 | } |
| 31 | |
| 32 | return ts.factory.createIdentifier(name); |
| 33 | } |
| 34 | |
| 35 | export function propertySignature( |
| 36 | modifiers: readonly modifierKeys[] | readonly ts.Modifier[] | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…