src/app/streams/components/streams.interface.ts
Properties |
app |
app:
|
Type : Array<string>
|
global |
global:
|
Type : Array<string>
|
import { ListParams } from '../../shared/components/shared.interface';
export interface StreamListParams extends ListParams {
q: string;
page: number;
size: number;
sort: string;
order: string;
}
export interface StreamBuilderError {
global: Array<string>;
app: Array<string>;
}