Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 | 46x 46x 46x 5x | import { validateConfig } from "./schema";
import type { Migrations } from "types/configuration";
export const CURRENT_VERSION = 1;
export const migrations: Migrations = {
0: (oldConfig) => validateConfig(oldConfig),
default: (oldConfig) => validateConfig(oldConfig),
};
|