Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FixedOrPercent

import type { FixedOrPercent } from "https://googleapis.deno.dev/v1/osconfig:v1.ts";

Message encapsulating a value that can be either absolute ("fixed") or relative ("percent") to a value.

interface FixedOrPercent {
fixed?: number;
percent?: number;
}

§Properties

§
fixed?: number
[src]

Specifies a fixed value.

§
percent?: number
[src]

Specifies the relative value defined as a percentage, which will be multiplied by a reference value.