5 lines
151 B
TypeScript
5 lines
151 B
TypeScript
import type { ServiceInterfaceId } from './ServiceInterfaceId';
|
|
export type ClearServiceInterfacesParams = {
|
|
except: Array<ServiceInterfaceId>;
|
|
};
|