mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-04 05:56:09 +00:00
19 lines
589 B
TypeScript
19 lines
589 B
TypeScript
import type {
|
|
RESTGetAPISKUSubscriptionsResult,
|
|
RESTGetAPISKUSubscriptionsQuery,
|
|
RESTGetAPISKUSubscriptionResult,
|
|
} from '../../types';
|
|
import type { RestArguments } from '../api';
|
|
import type { ProxyRequestMethod } from '../Router';
|
|
|
|
export interface SKuRoutes {
|
|
skus(id: string): {
|
|
get: (
|
|
args?: RestArguments<ProxyRequestMethod.Get, RESTGetAPISKUSubscriptionsQuery>,
|
|
) => Promise<RESTGetAPISKUSubscriptionsResult>;
|
|
subscriptions(id: string): {
|
|
get: (args?: RestArguments<ProxyRequestMethod.Get>) => Promise<RESTGetAPISKUSubscriptionResult>;
|
|
};
|
|
};
|
|
}
|