mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 15:31:52 +00:00
config redirect
This commit is contained in:
+63
@@ -0,0 +1,63 @@
|
||||
export function parseDirective(statement: any, context: any, type: any): void;
|
||||
export function setDirection(dir: any): void;
|
||||
export function setOptions(rawOptString: any): void;
|
||||
export function getOptions(): {};
|
||||
export function commit(msg: any, id: any, type: any, tag: any): void;
|
||||
export function branch(name: any, order: any): void;
|
||||
export function merge(otherBranch: any, custom_id: any, override_type: any, custom_tag: any): void;
|
||||
export function cherryPick(sourceId: any, targetId: any, tag: any): void;
|
||||
export function checkout(branch: any): void;
|
||||
export function prettyPrint(): void;
|
||||
export function clear(): void;
|
||||
export function getBranchesAsObjArray(): {
|
||||
name: any;
|
||||
}[];
|
||||
export function getBranches(): typeof branches;
|
||||
export function getCommits(): {};
|
||||
export function getCommitsArray(): any[];
|
||||
export function getCurrentBranch(): string | undefined;
|
||||
export function getDirection(): string;
|
||||
export function getHead(): any;
|
||||
export namespace commitType {
|
||||
const NORMAL: number;
|
||||
const REVERSE: number;
|
||||
const HIGHLIGHT: number;
|
||||
const MERGE: number;
|
||||
const CHERRY_PICK: number;
|
||||
}
|
||||
declare namespace _default {
|
||||
export { parseDirective };
|
||||
export function getConfig(): import("../../config.type").GitGraphDiagramConfig | undefined;
|
||||
export { setDirection };
|
||||
export { setOptions };
|
||||
export { getOptions };
|
||||
export { commit };
|
||||
export { branch };
|
||||
export { merge };
|
||||
export { cherryPick };
|
||||
export { checkout };
|
||||
export { prettyPrint };
|
||||
export { clear };
|
||||
export { getBranchesAsObjArray };
|
||||
export { getBranches };
|
||||
export { getCommits };
|
||||
export { getCommitsArray };
|
||||
export { getCurrentBranch };
|
||||
export { getDirection };
|
||||
export { getHead };
|
||||
export { setAccTitle };
|
||||
export { getAccTitle };
|
||||
export { getAccDescription };
|
||||
export { setAccDescription };
|
||||
export { setDiagramTitle };
|
||||
export { getDiagramTitle };
|
||||
export { commitType };
|
||||
}
|
||||
export default _default;
|
||||
declare let branches: typeof branches;
|
||||
import { setAccTitle } from "../../commonDb";
|
||||
import { getAccTitle } from "../../commonDb";
|
||||
import { getAccDescription } from "../../commonDb";
|
||||
import { setAccDescription } from "../../commonDb";
|
||||
import { setDiagramTitle } from "../../commonDb";
|
||||
import { getDiagramTitle } from "../../commonDb";
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import type { DiagramDetector } from '../../diagram-api/types';
|
||||
export declare const gitGraphDetector: DiagramDetector;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
export function draw(txt: any, id: any, ver: any, diagObj: any): void;
|
||||
declare namespace _default {
|
||||
export { draw };
|
||||
}
|
||||
export default _default;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export default getStyles;
|
||||
declare function getStyles(options: any): string;
|
||||
Reference in New Issue
Block a user