17 lines
577 B
TypeScript
17 lines
577 B
TypeScript
import { WithoutParseKeys } from '../parse';
|
|
import { RequestConfig } from '../requestConfig';
|
|
import { GroupInfo } from '../types/groupInfo';
|
|
import { IsoTime } from '../types/primitives';
|
|
export interface UpdateGroupResponse {
|
|
success: {
|
|
updatedAt: IsoTime;
|
|
};
|
|
}
|
|
type Input = Omit<WithoutParseKeys<GroupInfo>, 'UpdateID'>;
|
|
export declare function updateGroup(config: RequestConfig, data: Input | Input[]): {
|
|
readonly id: "updateGroup";
|
|
readonly path: string;
|
|
readonly method: "PUT";
|
|
readonly body: WithoutParseKeys<GroupInfo>;
|
|
}[];
|
|
export {};
|