5 lines
106 B
TypeScript
5 lines
106 B
TypeScript
import type { BindId } from './BindId';
|
|
export type ClearBindingsParams = {
|
|
except: Array<BindId>;
|
|
};
|