mirror of
https://github.com/koel/koel
synced 2024-11-28 06:50:27 +00:00
8 lines
239 B
TypeScript
8 lines
239 B
TypeScript
declare namespace Cypress {
|
|
interface Chainable {
|
|
$login(redirectTo?: string): Chainable
|
|
$loginAsNonAdmin(redirectTo?: string): Chainable
|
|
$each(dataset: Array<Array<any>>, callback: Function): void
|
|
$confirm(): void
|
|
}
|
|
}
|