Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
526 B
13 lines
526 B
import type {InitialParcelOptions, BuildEvent, BuildSuccessEvent, AsyncSubscription} from '@parcel/types';
|
|
import type {FarmOptions} from '@parcel/workers';
|
|
import type WorkerFarm from '@parcel/workers';
|
|
|
|
export default class Parcel {
|
|
constructor(options: InitialParcelOptions);
|
|
run(): Promise<BuildSuccessEvent>;
|
|
watch(
|
|
cb?: (err: Error | null | undefined, buildEvent?: BuildEvent) => unknown,
|
|
): Promise<AsyncSubscription>
|
|
}
|
|
|
|
export declare function createWorkerFarm(options?: Partial<FarmOptions>): WorkerFarm;
|
|
|