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.
16 lines
542 B
16 lines
542 B
2 years ago
|
import type {InitialParcelOptions, BuildEvent, BuildSuccessEvent, AsyncSubscription} from '@parcel/types';
|
||
|
import type {FarmOptions} from '@parcel/workers';
|
||
|
import type WorkerFarm from '@parcel/workers';
|
||
|
|
||
|
export 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;
|
||
|
|
||
|
export default Parcel;
|