MCPcopy Create free account
hub / github.com/coder/guts / identifier

Function identifier

typescript-engine/src/index.ts:27–33  ·  view source on GitHub ↗
(name: string | ts.Identifier)

Source from the content-addressed store, hash-verified

25}
26
27export 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
35export function propertySignature(
36 modifiers: readonly modifierKeys[] | readonly ts.Modifier[] | undefined,

Callers 8

propertySignatureFunction · 0.85
referenceFunction · 0.85
interfaceDeclFunction · 0.85
aliasDeclFunction · 0.85
typeParameterDeclarationFunction · 0.85
enumDeclarationFunction · 0.85
importSpecifierFunction · 0.85
typeQueryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…