2021-07-08 22:07:52 +02:00

8 lines
149 B
TypeScript

import * as upload from '../services/Upload';
type S = {
upload: typeof upload;
};
export function getService<T extends keyof S>(name: T): S[T];