/** * Pixels dice roll states. * @enum * @category Message */ export declare const PixelRollStateValues: { /** The die roll state could not be determined. */ readonly unknown: number; /** The die finished rolling and is now on a face, and it looked like a proper roll. */ readonly rolled: number; /** The die is being handled. */ readonly handling: number; /** The die is rolling. */ readonly rolling: number; /** The die finished rolling but is not on a valid face. */ readonly crooked: number; /** * The dis is not moving and, as far as we know, it has either * never moved or it didn't move enough to trigger a roll. */ readonly onFace: number; }; /** * The names for the "enum" type {@link PixelRollStateValues}. * @category Message */ export type PixelRollState = keyof typeof PixelRollStateValues; //# sourceMappingURL=PixelRollState.d.ts.map