Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update exported NextcloudWindowWithRegistry type #640

Merged
merged 1 commit into from Jun 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/date.ts
@@ -1,6 +1,6 @@
/// <reference types="@nextcloud/typings" />

declare let window: Nextcloud.v24.WindowWithGlobals
declare let window: Nextcloud.v27.WindowWithGlobals

/**
* Get the first day of the week
Expand Down
2 changes: 1 addition & 1 deletion lib/registry.ts
Expand Up @@ -34,7 +34,7 @@ export type PluralFunction = (number: number) => number
*
* @private
*/
export interface NextcloudWindowWithRegistry extends Nextcloud.v25.WindowWithGlobals {
export interface NextcloudWindowWithRegistry extends Nextcloud.v27.WindowWithGlobals {
_oc_l10n_registry_translations?: Record<string, Translations>
_oc_l10n_registry_plural_functions?: Record<string, PluralFunction>
}
Expand Down