Skip to content

NotNull

Under Construction

This documentation is auto-generated, and is a work in progress. Please see the source code at https://github.com/phetsims/phet-core/blob/main/js/types/NotNull.ts for the most up-to-date information.

Overview

Type NotNull

Similar to the built-in NotNullable, but just for null

@author Jonathan Olson <jonathan.olson@colorado.edu>

import type { NotNull } from 'scenerystack/phet-core';

T extends null ? never : T

Source Code

See the source for NotNull.ts in the phet-core repository.