UNPKG

@memlab/e2e

Version:

memlab browser E2E interaction libraries

25 lines 718 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format * @oncall memory_lab */ declare module 'xvfb' { interface XvfbParams { silent: boolean; xvfb_args: string[]; timeout: number; } export default class Xvfb { constructor(params: XvfbParams); start: (callback: (error: Error) => unknown | null) => void; stop: (callback: (error: Error) => unknown | null) => void; startSync: () => void; stopSync: () => void; display: () => string; } } //# sourceMappingURL=TypesThirdParty.d.ts.map