8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import { AttachBranch } from "./attachEnums/AttachBranch.js";
|
|
|
|
export interface AttachPreview {
|
|
branch: AttachBranch;
|
|
options: any;
|
|
new_items: any;
|
|
}
|