2021-08-19 16:49:33 +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];