mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import GenericFunction from "./GenericFunction";
|
|
import GenericObject from "./GenericObject";
|
|
|
|
export type ReflectionMetadataType = {
|
|
(target: GenericFunction): void;
|
|
(target: GenericObject, propertyKey: string | symbol): void;
|
|
};
|