Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
14
Frontend-Learner/node_modules/simple-git/dist/src/lib/tasks/task.d.ts
generated
vendored
Normal file
14
Frontend-Learner/node_modules/simple-git/dist/src/lib/tasks/task.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import type { BufferTask, EmptyTaskParser, SimpleGitTask, StringTask } from '../types';
|
||||
export declare const EMPTY_COMMANDS: [];
|
||||
export type EmptyTask = {
|
||||
commands: typeof EMPTY_COMMANDS;
|
||||
format: 'empty';
|
||||
parser: EmptyTaskParser;
|
||||
onError?: undefined;
|
||||
};
|
||||
export declare function adhocExecTask(parser: EmptyTaskParser): EmptyTask;
|
||||
export declare function configurationErrorTask(error: Error | string): EmptyTask;
|
||||
export declare function straightThroughStringTask(commands: string[], trimmed?: boolean): StringTask<string>;
|
||||
export declare function straightThroughBufferTask(commands: string[]): BufferTask<Buffer>;
|
||||
export declare function isBufferTask<R>(task: SimpleGitTask<R>): task is BufferTask<R>;
|
||||
export declare function isEmptyTask<R>(task: SimpleGitTask<R>): task is EmptyTask;
|
||||
Loading…
Add table
Add a link
Reference in a new issue