import { TickerQuotes } from './TickerQuotes';
export interface IWave {
    getName(): string;
    print(oPC: TickerQuotes): void;
}
