microsoft / microsoft/TypeScript

Allow interfaces to declare members that inheritors must define

Open
#56,774 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Awaiting More Feedback Suggestion
Dominant language
Go
Stars
111k
Forks
14.4k
Avg merge
1d 19h
Merged PRs (30d)
117

Description

🔍 Search Terms

interface enforce, interface abstract, interface inherit

✅ Viability Checklist
⭐ Suggestion

Allowing interfaces, especially those exported by libraries, to specify mandatory, user-defined type-narrowing would make many situations simpler, removing some of the hoops that developers jump through to defer type resolution.

This might look something like:

interface Foo {
	abstract bar: unknown;
	baz: string;
}

const foo: Foo = {bar: 0, baz: "a"}; // errors - interface Foo has unset abstract property

interface Bar extends Foo {} // errors - property `bar` is missing

// all properties within Foo can be narrowed
interface Baz extends Foo {
	bar: number;
	baz: "hello" | "world";	
}

For a more concrete example, we might revisit the Shape example from the TS docs:

interface Circle {
  kind: "circle";
  radius: number;
}
 
interface Square {
  kind: "square";
  sideLength: number;
}
 
type Shape = Circle | Square;

This is nice, but it runs into a problem - Circle and Square can't share any properties because we've removed inheritance from the equation, so area and perimeter would need to be defined separately on each or defined on a shared, extended interface like BaseShape. Instead, we can stick with the original inheritance patterns and enforce properties further down the inheritance chain.

interface WithKind {
	abstract kind: string;
}

interface Shape {
	area: number;
	perimeter: number;
}

interface ShapeWithKind extends Shape, WithKind {
	kind: string;
}

interface Square extends Shape, WithKind {
	kind: "square",
	sideLength: number;
}

interface Circle extends Shape, WithKind {
	kind: "circle",
	radius: number;
}

interface Triangle extends Shape, WithKind { // error - missing property `kind`
	sideLengths: [number, number, number];
}

When it comes time to consume this via a function, we can specify if we need a Shape or ShapeWithKind or maybe some shapes have a family property, extending Shape, WithKind, and WithFamily. This is somewhat reminiscent of Dart's abstract class mixins but exclusively looks at the implications on the type system, disregarding the entirety of the runtime impact of that inspiration.

📃 Motivating Example

Abstract classes let you add base behavior so programmers don't have to code everything, while still forcing them to follow your design. The new interface properties allow the same within the type system, improving the developer experience for consumers of your module as well as allowing more robust mechanisms to defer type resolution to the point of use rather than the point of definition.

💻 Use Cases
  1. What do you want to use this for?
    I want to use this to enforce the shape of an interface without providing all of the type information at the point of use. A colleague wants to effectively write interface Foo {...} satisfies Bar, which would be possible with interface Foo extends AbstractFoo {...}. If paired with #55143 (or even just judicious use of the never bottom type) you could apply full constraints to inheriting interfaces in terms of what members must be defined and what members must not be, which seems especially powerful for overload resolution.

  2. What shortcomings exist with current approaches?
    The only way that I know of to do something similar is to use a dummy utility type, which then means you're either separating errors from interface signatures or defining everything as a type alias and losing the value of interfaces.

  3. What workarounds are you using in the meantime?

type Ensure<TEnforcedInterface, TInterface extends TEnforcedInterface> = TInterface;

interface Enforced {
	foo: unknown;
	bar: unknown;
}

interface IEnforceMe {
	foo: string;
}
type EnforceMe = Ensure<Enforced, IEnforceMe>; // errors report on this line

type EnforceMe2 = Ensure<Enforced, {foo: string}>; // errors report here, but all consuming code won't see the `EnforceMe2` name

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reviewing TypeScript's interface inheritance and type-checking entry points, then identify the compiler tests covering interface extension and member compatibility. Define how abstract interface members interact with object literals, inheritance, narrowing, and existing compatibility rules before implementation. Done means the semantics are agreed and covered by compiler tests without changing emitted JavaScript.

Written by the indexing model from the issue text.

Assessment

Tech stack
typescript
Domain
compilers
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.