RenaiApp/types/ipc-controller-method-decor...

9 lines
173 B
TypeScript

/**
* @see MethodDecorator
*/
type IpcControllerMethodDecorator = <T>(
target: IpcController,
propertyKey: string,
descriptor: TypedPropertyDescriptor<T>
) => void;