9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import type { DeviceStoreIndex } from '@/apis';
|
|
import type { LinkDescription } from './link-description';
|
|
|
|
export interface NdmSecurityBoxLinkDescription extends LinkDescription {
|
|
downstream?: {
|
|
[circuitIndex: number]: DeviceStoreIndex;
|
|
};
|
|
}
|