Plugin Directory

Changeset 3113801

Timestamp:
07/07/2024 01:58:14 PM (4 weeks ago)
Author:
whiteshadow
Message:

Minor: Extract the wp global type to an interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • admin-menu-editor/trunk/js/common.d.ts

    r3018367 r3113801  
    3636 * Sure would be nice if WordPress provided this.
    3737 */
    38 declare const wp: {
     38 {
    3939    codeEditor: {
    4040        //See /wp-admin/js/code-editor.js for basic method documentation.
     
    6363        doAction: (actionName: string, ...args: unknown[]) => void;
    6464    };
    65 };
     65}
     66
     67declare const wp: AmePartialWpGlobal;
    6668
    6769/**
Note: See TracChangeset for help on using the changeset viewer.