5 lines
101 B
TypeScript
5 lines
101 B
TypeScript
import type { BindInfo } from './BindInfo';
|
|
export type Bindings = {
|
|
[key: number]: BindInfo;
|
|
};
|