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