bazarr/frontend/src/@redux/utils/index.ts

11 lines
164 B
TypeScript

export function defaultAOS(): AsyncOrderState<any> {
return {
updating: true,
data: {
items: [],
order: [],
dirty: false,
},
};
}