7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
import type { NSQLiteConfig } from "../types";
|
|
type Params = {
|
|
config: NSQLiteConfig;
|
|
};
|
|
export default function grabSortedBackups({ config }: Params): string[];
|
|
export {};
|