(runtime: string, Type: string): CodeConstructs a Code value from a runtime expression string and a TypeScript type string.
Code GenerationCode
Source effect/SchemaRepresentation.ts:22653 lines
export function function makeCode(
runtime: string,
Type: string
): Code
Constructs a
Code
value from a runtime expression string and a
TypeScript type string.
makeCode(runtime: stringruntime: string, type Type: stringType: string): type Code = {
readonly runtime: string
readonly Type: string
}
A pair of TypeScript source strings for a schema: runtime is the
executable Schema expression, Type is the corresponding TypeScript type.
Code {
return { runtime: stringruntime, type Type: stringType }
}Referenced by 1 symbols