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

Interactivity API: Add types for warn helper. #61687

Merged
merged 2 commits into from
May 15, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/interactivity/src/constants.js

This file was deleted.

1 change: 1 addition & 0 deletions packages/interactivity/src/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const directivePrefix: string = 'wp';
4 changes: 2 additions & 2 deletions packages/interactivity/src/utils/warn.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const logged = new Set();
const logged: Set< string > = new Set();

export const warn = ( message ) => {
export const warn = ( message: string ): void => {
// @ts-expect-error
if ( typeof SCRIPT_DEBUG !== 'undefined' && SCRIPT_DEBUG === true ) {
if ( logged.has( message ) ) {
Expand Down
Loading