The TypeScript satisfies Operator
I had a theme configuration object with twelve color tokens. TypeScript annotated it as ThemeColors, which validated the shape but turned every hex string into plain string — autocomplete for specific color names disappeared. Casting with as const gave me literal types but didn't catch the typo accemt: "#ff0000" where accent was expected. TypeScript 4.9's satisfies operator does both: validates against ThemeColors and keeps each value's literal type. It's the tool for the exact problem that neither annotations nor assertions solve cleanly.
The widening problem
type Color = "red" | "green" | "blue";
const annotation: Record<string, Color> = {
primary: "red",
secondary: "green",
};
// annotation.primary is Color (not "red")
type Primary = typeof annotation.primary; // Color
The annotation validates values but widens literals. You lose the specific type information that powers precise autocomplete and exhaustive checks.
const assertion = {
primary: "red",
secondary: "green",
} as const;
// Validates nothing — this compiles:
const bad = {
primary: "red",
secondary: "green",
accent: "yellow", // not in Color — no error
} as const;
as const preserves literals but doesn't validate against a target type.
satisfies: both checks
type Color = "red" | "green" | "blue";
const palette = {
primary: "red",
secondary: "green",
} satisfies Record<string, Color>;
// palette.primary is "red" (literal preserved)
type Primary = typeof palette.primary; // "red"
// Typos are caught:
const broken = {
primary: "red",
secondary: "yello", // Error: "yello" is not assignable to Color
} satisfies Record<string, Color>;
Validation and literal preservation in one expression.
Configuration objects
The most common use case — app config with known keys and literal values:
interface ServerConfig {
host: string;
port: number;
env: "development" | "staging" | "production";
features: Record<string, boolean>;
}
const config = {
host: "0.0.0.0",
port: 3000,
env: "production",
features: {
darkMode: true,
betaApi: false,
},
} satisfies ServerConfig;
// config.env is "production" (not string)
// config.features.darkMode is true (not boolean)
Downstream code that branches on config.env gets exhaustiveness checking. Downstream code that reads config.features.darkMode knows it's true, not boolean.
Route and API definitions
type HttpMethod = "GET" | "POST" | "PUT" | "DELETE";
type RouteHandler = {
method: HttpMethod;
path: string;
handler: (req: Request) => Response;
};
const routes = {
getUser: {
method: "GET",
path: "/users/:id",
handler: getUserHandler,
},
createUser: {
method: "POST",
path: "/users",
handler: createUserHandler,
},
} satisfies Record<string, RouteHandler>;
// routes.getUser.method is "GET" (literal)
// misspelled method "GETT" would be caught at compile time
CSS and design tokens
type Spacing = `${number}px` | `${number}rem`;
const spacing = {
xs: "4px",
sm: "8px",
md: "16px",
lg: "24px",
xl: "32px",
} satisfies Record<string, Spacing>;
// spacing.md is "16px" — usable in template literal contexts
const style = `padding: ${spacing.md};`;
Event maps and discriminated unions
type EventPayloads = {
click: { x: number; y: number };
keypress: { key: string; shift: boolean };
scroll: { top: number };
};
const handlers = {
click: (payload) => console.log(payload.x, payload.y),
keypress: (payload) => console.log(payload.key),
scroll: (payload) => console.log(payload.top),
} satisfies {
[K in keyof EventPayloads]: (payload: EventPayloads[K]) => void;
};
Each handler's payload is precisely typed for its event. Add a new event to EventPayloads and the compiler requires a matching handler.
satisfies vs. other approaches
| Approach | Validates shape | Preserves literals | Catches extra keys |
|---|---|---|---|
| Type annotation | Yes | No | Depends on type |
as const |
No | Yes | No |
as Type assertion |
No | No | No |
satisfies Type |
Yes | Yes | Depends on type |
Combining with generics
satisfies works in generic contexts for validating computed objects:
function createLookup<T extends Record<string, string>>(entries: T) {
return entries satisfies Record<string, string>;
}
const colors = createLookup({
red: "#ff0000",
green: "#00ff00",
blue: "#0000ff",
});
// colors.red is "#ff0000", not string
When to reach for it
Use satisfies whenever you have a concrete object that should match a type but where you also need the narrowest possible inferred types for its values. Configuration, theme tokens, route tables, translation maps, and enum-like objects are the sweet spots. For function parameters that are already typed by the signature, you don't need it — the parameter type provides the validation.
satisfies vs as const
const config = {
apiUrl: "https://api.example.com",
retries: 3,
} satisfies AppConfig;
// config.retries is number, not literal 3 — usable where number expected
satisfies validates shape without widening to union of literals — better than as Config which loses type checking.
Common production mistakes
Teams get satisfies operator wrong in predictable ways:
- Skipping failure-mode rehearsal — run a game day or fault injection exercise before peak traffic, not after the first outage.
- Missing correlation context — every error path should carry request, trace, or tenant identifiers so incidents are debuggable.
- Optimizing for demo, not steady state — load tests, cache warm-up, and cold-start paths matter more than local dev latency.
- Undocumented trade-offs — if you chose speed over strict correctness (or vice versa), write that down for the next engineer.
TypeScript patterns for satisfies operator erode when any escapes during deadlines, generic constraints are loosened instead of modeling domain invariants, and strict mode is disabled file-by-file without a migration plan.
Debugging and triage workflow
When satisfies operator misbehaves in production, work top-down instead of guessing:
- Confirm scope — one tenant, region, or deployment stage? Narrow blast radius before deep diving.
- Check recent changes — deploys, flag flips, config pushes, and schema migrations in the last 24 hours.
- Compare golden signals — latency, error rate, saturation, and traffic for the affected surface vs. baseline.
- Reproduce minimally — smallest input or scenario that triggers the failure; capture traces/logs with correlation IDs.
- Fix forward or rollback — if rollback is faster than root-cause during incident, rollback first, postmortem second.
- Add a guard — alert, integration test, or circuit breaker so the same class of failure is caught earlier next time.
Document the timeline during triage. Future you (and on-call) will need timestamps, not just conclusions.
Resources
- TypeScript 4.9 Release Notes: satisfies
- TypeScript Playground: satisfies examples
- Total TypeScript: satisfies
- TypeScript Handbook: Literal Types
- TypeScript Handbook: Type Assertions
Frequently asked questions
What does the satisfies operator do in TypeScript?
The satisfies operator checks that an expression conforms to a type without changing the expression's inferred type. Unlike a type annotation, which widens literal types to their base type, satisfies preserves narrow literal types while still validating the shape. You get both compile-time checking and precise autocomplete for literal values like color names, route paths, or configuration keys.
How is satisfies different from a type annotation?
A type annotation like const config: Config = { ... } validates the shape but widens inferred types — a literal 'red' becomes string. The satisfies operator const config = { ... } satisfies Config validates the same shape but keeps 'red' as the literal type 'red'. This matters when you want exhaustiveness checking plus precise downstream inference for individual property values.
When should I use satisfies instead of as const?
Use as const when you want everything deeply readonly and literal with no target type to validate against. Use satisfies when you need to check against a specific type — like a Record of route handlers or a theme config interface — while preserving literal types. satisfies gives you validation that as const cannot provide, because as const doesn't check whether your object actually matches an expected shape.
Hiring a senior Android / Flutter engineer?
I architect and ship production mobile software — Kotlin, Jetpack Compose, Flutter — for robotics, EV infrastructure, fintech, and real-time systems. Open to remote roles in Europe and the US.
Get in touch →