container.ts 138 B

123456
  1. import { NavModel } from './navModel';
  2. export interface ContainerProps {
  3. navModel: NavModel;
  4. initNav: (...args: string[]) => void;
  5. }