mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
fix beforeScreenshot and afterScreenshot return types
This commit is contained in:
parent
1e064ef2c3
commit
3751c56cdd
@ -39,8 +39,8 @@ export interface PuppeteerTestConfig extends CommonConfig {
|
||||
export interface ImageSnapshotConfig extends CommonConfig {
|
||||
getMatchOptions: (options: Options) => MatchImageSnapshotOptions;
|
||||
getScreenshotOptions: (options: Options) => Base64ScreenShotOptions;
|
||||
beforeScreenshot: (page: Page, options: Options) => void | ElementHandle;
|
||||
afterScreenshot: (options: { image: string; context: Context }) => void;
|
||||
beforeScreenshot: (page: Page, options: Options) => Promise<void | ElementHandle>;
|
||||
afterScreenshot: (options: { image: string; context: Context }) => Promise<void>;
|
||||
}
|
||||
|
||||
const noop: () => undefined = () => undefined;
|
||||
|
Loading…
x
Reference in New Issue
Block a user