mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00
8 lines
149 B
TypeScript
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];
|