7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import type { BunMariaDBConfig } from "../types";
|
|
type Params = {
|
|
config: BunMariaDBConfig;
|
|
};
|
|
export default function trimBackups({ config }: Params): void;
|
|
export {};
|