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

9 lines
174 B
TypeScript

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