9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import type { DeviceStoreIndex } from '@/apis';
|
|
import type { LinkDescription } from './link-description';
|
|
|
|
export interface NdmSwitchLinkDescription extends LinkDescription {
|
|
downstream?: {
|
|
[portName: string]: DeviceStoreIndex;
|
|
};
|
|
}
|