mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
bf45e97641
* Update types * fix circular dep * type imports * lint type imports and --fix
12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
import OAuthClient from "~/models/oauth/OAuthClient";
|
|
import type RootStore from "./RootStore";
|
|
import Store from "./base/Store";
|
|
|
|
export default class OAuthClientsStore extends Store<OAuthClient> {
|
|
apiEndpoint = "oauthClients";
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, OAuthClient);
|
|
}
|
|
}
|