1// SPDX-FileCopyrightText: 2026 Romain Maneschi <romain@gitroot.dev>
2//
3// SPDX-License-Identifier: MIT
4
5export namespace InitKind {
6 export const ConfHasChange = "confhaschange";
7 export const Diff = "diff";
8 export const Schedule = "schedule";
9 export const FuncCall = "funccall";
10}
11
12export type InitKind = string;