microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/enable-backcompat-top-parameter-another-one

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/asset-emitter/src/index.ts

34lines · modecode

1export { createAssetEmitter } from "./asset-emitter.js";
2export { ArrayBuilder } from "./builders/array-builder.js";
3export { ObjectBuilder, setProperty } from "./builders/object-builder.js";
4export { StringBuilder, code } from "./builders/string-builder.js";
5export { Placeholder } from "./placeholder.js";
6export { ReferenceCycle } from "./reference-cycle.js";
7export { CodeTypeEmitter, TypeEmitter, type EmitterOutput } from "./type-emitter.js";
8export {
9 CircularEmit,
10 Declaration,
11 EmitterResult,
12 NoEmit,
13 RawCode,
14 type AssetEmitter,
15 type AssetTag,
16 type AssetTagFactory,
17 type AssetTagInstance,
18 type Context,
19 type ContextState,
20 type ESRecord,
21 type EmitEntity,
22 type EmitTypeReferenceOptions,
23 type EmittedSourceFile,
24 type EmitterState,
25 type LexicalTypeStackEntry,
26 type NamespaceScope,
27 type Scope,
28 type ScopeBase,
29 type SourceFile,
30 type SourceFileScope,
31 type TypeEmitterMethod,
32 type TypeReference,
33 type TypeSpecDeclaration,
34} from "./types.js";