8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
|
export interface StoreNoticesState {
|
||
|
containers: string[];
|
||
|
}
|
||
|
|
||
|
export const defaultStoreNoticesState: StoreNoticesState = {
|
||
|
containers: [],
|
||
|
};
|