mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
04c3d81b1f
* shared * server * app * remove vestigial eslintrc files * update comment directives
14 lines
207 B
TypeScript
14 lines
207 B
TypeScript
/* oxlint-disable */
|
|
export const client = {
|
|
post: jest.fn(() =>
|
|
Promise.resolve({
|
|
data: {
|
|
user: {},
|
|
team: {},
|
|
groups: [],
|
|
groupUsers: [],
|
|
},
|
|
})
|
|
),
|
|
};
|