Search notes:

Power Query M formula language: Types

Functions etc.

Value.Type
Type.*.
Int32.Type, Number.Type, Int64.Type, Double.Type, Text.Type, Day.Type etc.

Operators

is
as is the the type assertion operator. X as Y makes sure that X is compatible to Y as per the is operator.
If X is incompatible to Y, an error is raised.
Y must be a nullable-primitive-type.

Index