datasquirel/dist/package-shared/functions/web-app/mariadb-user/revoke-all-existing-grants.d.ts
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

13 lines
374 B
TypeScript

import { UserType } from "../../../types";
import { DSQL_DATASQUIREL_MARIADB_USERS } from "../../../types/dsql";
type Params = {
user: UserType;
updatedRecord: DSQL_DATASQUIREL_MARIADB_USERS;
};
type Return = {
msg?: string;
success?: boolean;
};
export default function revokeAllExistingGrants({ user, updatedRecord, }: Params): Promise<Return>;
export {};