@fluidframework/synthesize
TypeScript icon, indicating that this package has built-in type declarations

2.4.0 • Public • Published

@fluidframework/synthesize

An Ioc type library for synthesizing a FluidObject based on FluidObject providers.

Using Fluid Framework libraries

When taking a dependency on a Fluid Framework library's public APIs, we recommend using a ^ (caret) version range, such as ^1.3.4. While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries, library consumers should always prefer ^.

If using any of Fluid Framework's unstable APIs (for example, its beta APIs), we recommend using a more constrained version range, such as ~.

Installation

To get started, install the package by running the following command:

npm i @fluidframework/synthesize

Importing from this package

This package leverages package.json exports to separate its APIs by support level. For more information on the related support guarantees, see API Support Levels.

To access the public (SemVer) APIs, import via @fluidframework/synthesize like normal.

To access the legacy APIs, import via @fluidframework/synthesize/legacy.

API Documentation

API documentation for @fluidframework/synthesize is available at https://fluidframework.com/docs/apis/synthesize.

It allows for the creation of a DependencyContainer that can have FluidObjects registered with it based on their interface Symbol. So for example if I wanted to register something as IFoo I would need to provide and object that implements IFoo along side it.

The DependencyContainer also exposes a synthesize method that returns an object with a Promise to the correct optional and required symbols requested.

So if I wanted an object with an optional IFoo and a required IBar I would get back:

{
	IFoo: Promise<IFoo | undefined>;
	IBar: Promise<IBar>;
}

Simple Example

const dc = new DependencyContainer<FluidObject<IFoo & IBar>>();
dc.register(IFoo, new Foo());

const s = dc.synthesize({IFoo}, {});
const foo = await s.IFoo;
console.log(s.IFoo?.foo;)

API

Fluid object Providers

Fluid object Providers are the the different ways you can return a FluidObject when registering.

There are four types of providers:

  1. Value Provider
  2. Async Value Provider
  3. Factory Provider
  4. Async Factory Provider
type FluidObjectProvider<T> =
	| NonNullable<T>
	| Promise<NonNullable<T>>
	| ((dependencyContainer: IFluidDependencySynthesizer) => NonNullable<T>)
	| ((dependencyContainer: IFluidDependencySynthesizer) => Promise<NonNullable<T>>);

Value Provider

Provide an FluidObject of a given type.

Usage

const dc = new DependencyContainer<FluidObject<IFoo>>();

dc.register(IFoo, new Foo());

Async Value Provider

Provide a Promise to an FluidObject of a given type.

Usage

const dc = new DependencyContainer<FluidObject<IFoo>>();

const generateFoo: Promise<IFoo> = await() => {
    const foo = new Foo();
    await foo.initialize();
    return foo;
}

dc.register(IFoo, generateFoo());

Factory Provider

Provide a function that will resolve an FluidObject of a given type.

Usage

const dc = new DependencyContainer<FluidObject<IFoo & IBar>>();
const fooFactory = () => new Foo();
dc.register(IFoo, fooFactory);

// Factories can utilize the DependencyContainer if the FluidObject depends
// on other providers
const barFactory = (dc) => new Bar(dc);
dc.register(IFoo, barFactory);

Async Factory Provider

Provide a function that will resolve a Promise to an FluidObject of a given type.

Usage

const dc = new DependencyContainer<FluidObject<IFoo & IBar>>();

const generateFoo: Promise<IFoo> = await() => {
    const foo = new Foo();
    await foo.initialize();
    return foo;
}

dc.register(IFoo, generateFoo);

const generateBar: Promise<IBar> = await(dc) => {
    const bar = new Bar();
    await bar.initialize(dc);
    return bar;
}

dc.register(IBar, generateBar);

Synthesize

Once you have a DependencyContainer with registered providers you can synthesize/generate a new FluidObject from it. The object that is returned will have the correct typing of optional and required types.

An Example:

If I wanted an object with an optional IFoo and a required IBar I would get back:

{
	IFoo: Promise<IFoo | undefined>;
	IBar: Promise<IBar>;
}

synthesize takes optionalTypes and requiredTypes as well as their corresponding types. FluidObjectSymbolProvider<> is a TypeScript type that ensures the types being passed match the ones in the object being provided.

Optional Types

Optional types will return a Promise to it's corresponding FluidObject or undefined. Because of this we need to do an if check to validate the object or use the ? like in the example below.

const dc = new DependencyContainer<FluidObject<IFoo>>();

const s = dc.synthesize<IFoo>({ IFoo }, {});
const foo = await s.IFoo;
console.log(foo?.foo);

Note: Because of how generics in TypeScript work we need to provide an empty requiredTypes object even though we don't need to provide the type.

Required Types

Required types will return a Promise to it's corresponding FluidObject or it will throw.

You can see below that we don't need to add the ? to check our requested type.

const dc = new DependencyContainer<FluidObject<IFoo>>();

const scope = dc.synthesize<{}, IFoo>({}, { IFoo });
const foo = await s.IFoo;
console.log(foo.foo);

Multiple Types

You can declare multiple types for both Optional and Required using the & or creating a separate type.

const dc = new DependencyContainer<FluidObject<IFoo & IBar>>();

const scope = dc.synthesize<IFoo & IBar>({ IFoo, IBar }, {});
const fooP = s.IFoo;
const barP = s.IBar;
const [foo, bar] = Promise.all([foo, bar]);
console.log(foo?.foo);
console.log(bar?.bar);
const dc = new DependencyContainer<FluidObject<IFoo & IBar>>();

const scope = dc.synthesize<{}, IFoo & IBar>({}, { IFoo, IBar });
const fooP = s.IFoo;
const barP = s.IBar;
const [foo, bar] = Promise.all([foo, bar]);
console.log(foo.foo);
console.log(bar.bar);
const dc = new DependencyContainer<FluidObject<IFoo & IBar>>();

const scope = dc.synthesize<IFoo, IBar>({ IFoo }, { IBar });
const fooP = s.IFoo;
const barP = s.IBar;
const [foo, bar] = Promise.all([foo, bar]);
console.log(foo?.foo);
console.log(bar.bar);

Parent

The DependencyContainer takes one optional parameter which is the parent. When resolving providers the DependencyContainer will first check the current container then look in the parent.

Minimum Client Requirements

These are the platform requirements for the current version of Fluid Framework Client Packages. These requirements err on the side of being too strict since within a major version they can be relaxed over time, but not made stricter. For Long Term Support (LTS) versions this can require supporting these platforms for several years.

It is likely that other configurations will work, but they are not supported: if they stop working, we do not consider that a bug. If you would benefit from support for something not listed here, file an issue and the product team will evaluate your request. When making such a request please include if the configuration already works (and thus the request is just that it becomes officially supported), or if changes are required to get it working.

Supported Runtimes

  • NodeJs ^20.10.0 except that we will drop support for it when NodeJs 20 loses its upstream support on 2026-04-30, and will support a newer LTS version of NodeJS (22) at least 1 year before 20 is end-of-life. This same policy applies to NodeJS 22 when it is end of life (2027-04-30).
  • Modern browsers supporting the es2022 standard library: in response to asks we can add explicit support for using babel to polyfill to target specific standards or runtimes (meaning we can avoid/remove use of things that don't polyfill robustly, but otherwise target modern standards).

Supported Tools

  • TypeScript 5.4:
    • All strict options are supported.
    • strictNullChecks is required.
    • Configuration options deprecated in 5.0 are not supported.
    • exactOptionalPropertyTypes is currently not fully supported. If used, narrowing members of Fluid Framework types types using in, Reflect.has, Object.hasOwn or Object.prototype.hasOwnProperty should be avoided as they may incorrectly exclude undefined from the possible values in some cases.
  • webpack 5
    • We are not intending to be prescriptive about what bundler to use. Other bundlers which can handle ES Modules should work, but webpack is the only one we actively test.

Module Resolution

Node16, NodeNext, or Bundler resolution should be used with TypeScript compilerOptions to follow the Node.js v12+ ESM Resolution and Loading algorithm. Node10 resolution is not supported as it does not support Fluid Framework's API structuring pattern that is used to distinguish stable APIs from those that are in development.

Module Formats

  • ES Modules: ES Modules are the preferred way to consume our client packages (including in NodeJs) and consuming our client packages from ES Modules is fully supported.

  • CommonJs: Consuming our client packages as CommonJs is supported only in NodeJS and only for the cases listed below. This is done to accommodate some workflows without good ES Module support. If you have a workflow you would like included in this list, file an issue. Once this list of workflows motivating CommonJS support is empty, we may drop support for CommonJS one year after notice of the change is posted here.

Contribution Guidelines

There are many ways to contribute to Fluid.

Detailed instructions for working in the repo can be found in the Wiki.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services. Use of these trademarks or logos must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.

Help

Not finding what you're looking for in this README? Check out fluidframework.com.

Still not finding what you're looking for? Please file an issue.

Thank you!

Trademark

This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.

Use of these trademarks or logos must follow Microsoft's Trademark & Brand Guidelines.

Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.2.2647rc
2.4.0372latest
2.5.0-3024636dev
2.0.0-internal.8.0.82canary
2.0.0-dev-rc.1.0.0.2252772next

Version History

VersionDownloads (Last 7 Days)Published
2.5.0-3024636
2.4.0372
2.4.0-2997072
2.4.0-2993742
2.4.0-2973853
2.3.18
2.2.2647
2.4.0-2970276
2.1.23
2.0.94
2.0.0-rc.5.0.8518
2.0.82
2.2.12
2.1.12
2.0.72
2.4.0-2943162
2.3.0348
2.3.0-2881132
2.2.015
2.0.62
2.0.0-rc.5.0.733
2.0.0-rc.4.0.102
2.1.02
2.1.0-2810412
2.0.52
2.0.0-rc.5.0.62
2.0.42
2.1.0-2769852
2.0.32
2.0.0-rc.5.0.52
2.1.0-2763262
2.0.22
2.0.0-rc.5.0.42
2.0.0-rc.4.0.92
2.0.0-rc.3.0.1133
2.0.0-rc.5.0.32
2.0.0-rc.4.0.82
2.0.0-rc.3.0.102
2.0.12
2.0.0-rc.5.0.22
2.0.0-rc.4.0.72
2.0.02
2.0.0-rc.2.0.933
2.0.0-rc.3.0.92
2.0.0-rc.5.0.12
2.1.0-2741602
2.0.0-rc.5.0.02
2.0.0-dev-rc.5.0.0.2728892
2.0.0-dev-rc.5.0.0.2722512
2.0.0-dev-rc.5.0.0.2717172
2.0.0-rc.4.0.62
2.0.0-rc.3.0.82
2.0.0-dev-rc.5.0.0.2712622
2.0.0-dev-rc.5.0.0.2710452
2.0.0-dev-rc.5.0.0.2709872
2.0.0-dev-rc.5.0.0.2704012
2.0.0-rc.2.0.82
2.0.0-rc.4.0.52
2.0.0-rc.3.0.72
2.0.0-rc.3.0.62
2.0.0-dev-rc.5.0.0.2684092
2.0.0-dev-rc.5.0.0.2679322
2.0.0-rc.4.0.42
2.0.0-rc.4.0.33
2.0.0-rc.3.0.52
2.0.0-rc.4.0.22
2.0.0-rc.3.0.42
2.0.0-dev-rc.5.0.0.2657212
2.0.0-rc.4.0.12
2.0.0-dev-rc.5.0.0.2639322
2.0.0-rc.4.0.02
2.0.0-rc.2.0.72
2.0.0-dev-rc.4.0.0.2616592
2.0.0-rc.2.0.62
2.0.0-rc.3.0.32
2.0.0-rc.2.0.52
2.0.0-rc.2.0.42
2.0.0-rc.1.0.92
2.0.0-rc.3.0.22
2.0.0-rc.2.0.32
2.0.0-rc.3.0.12
2.0.0-rc.3.0.02
2.0.0-dev-rc.3.0.0.2548662
2.0.0-dev-rc.3.0.0.2546742
2.0.0-dev-rc.3.0.0.2545132
2.0.0-dev-rc.3.0.0.2542742
1.4.02,068
2.0.0-rc.2.0.22
2.0.0-dev-rc.3.0.0.2534632
2.0.0-rc.1.0.82
2.0.0-rc.1.0.72
2.0.0-dev-rc.3.0.0.2506062
2.0.0-rc.2.0.12
2.0.0-rc.1.0.62
2.0.0-rc.1.0.52
2.0.0-internal.8.0.82
2.0.0-rc.2.0.02
2.0.0-dev-rc.2.0.0.2464882
2.0.0-dev-rc.2.0.0.2455542
2.0.0-rc.1.0.42
2.0.0-internal.8.0.72
2.0.0-internal.7.4.72
2.0.0-internal.8.0.62
2.0.0-rc.1.0.32
2.0.0-rc.1.0.22
2.0.0-internal.8.0.52
2.0.0-internal.7.4.62
2.0.0-internal.7.4.52
2.0.0-internal.7.4.42
2.0.0-dev-rc.1.0.0.2328452
2.0.0-internal.8.0.42
2.0.0-internal.7.4.32
2.0.0-internal.8.0.32
2.0.0-internal.7.4.22
2.0.0-internal.7.4.12
2.0.0-internal.8.0.22
2.0.0-rc.1.0.12
2.0.0-rc.1.0.02
2.0.0-dev-rc.1.0.0.2285172
2.0.0-internal.8.0.12
2.0.0-dev-rc.1.0.0.2252772
2.0.0-dev-rc.1.0.0.2244192
2.0.0-internal.8.0.07
2.0.0-internal.7.4.02
2.0.0-dev.7.4.0.2219262
2.0.0-dev.7.4.0.2178842
2.0.0-dev.7.4.0.2172122
2.0.0-dev.7.4.0.2168972
2.0.0-dev.7.4.0.2159302
2.0.0-dev.7.4.0.2157472
2.0.0-dev.7.4.0.2153663
2.0.0-dev.7.4.0.2149302
2.0.0-internal.7.3.02
2.0.0-dev.7.3.0.2121382
2.0.0-dev.7.3.0.2118482
2.0.0-internal.7.0.3273
2.0.0-dev.7.3.0.2103282
2.0.0-dev.7.3.0.2098312
2.0.0-dev.7.3.0.2091742
2.0.0-internal.7.0.22
2.0.0-internal.7.1.22
2.0.0-internal.7.2.22
2.0.0-dev.7.3.0.2090232
2.0.0-dev.7.3.0.2079922
2.0.0-dev.7.3.0.2077812
2.0.0-dev.7.3.0.206769114
2.0.0-internal.7.1.132
2.0.0-internal.7.0.126
2.0.0-internal.7.2.1223
2.0.0-internal.7.2.07
2.0.0-dev.7.2.0.20572231
2.0.0-dev.7.2.0.2049064
2.0.0-dev.7.2.0.2039173
2.0.0-internal.7.1.0151
2.0.0-internal.6.2.22
2.0.0-internal.6.3.42
2.0.0-internal.6.1.317
2.0.0-internal.6.0.42
2.0.0-internal.7.0.02
2.0.0-internal.6.4.0669
2.0.0-internal.6.3.33
2.0.0-dev.6.4.0.1920492
2.0.0-dev.6.4.0.1915152
2.0.0-dev.6.4.0.1914572
2.0.0-dev.6.4.0.1912582
2.0.0-internal.4.3.22
2.0.0-internal.6.2.12
2.0.0-internal.6.0.32
2.0.0-internal.6.1.22
2.0.0-internal.6.3.22
2.0.0-internal.6.0.22
2.0.0-internal.6.3.12
2.0.0-internal.6.3.04
1.3.71,242
2.0.0-internal.6.2.02
2.0.0-internal.6.0.12
2.0.0-internal.5.4.2302
2.0.0-internal.6.1.14
2.0.0-internal.6.1.02
2.0.0-internal.5.3.42
2.0.0-internal.6.0.02
2.0.0-internal.5.4.02
2.0.0-internal.4.4.4302
2.0.0-internal.5.3.22
2.0.0-internal.4.4.32
2.0.0-dev.5.3.2.1781892
2.0.0-internal.5.3.12
2.0.0-internal.4.4.22
2.0.0-internal.5.3.02
2.0.0-internal.5.2.02
2.0.0-internal.5.1.12
2.0.0-internal.5.1.02
2.0.0-dev.5.2.0.1698973
2.0.0-internal.5.0.13
2.0.0-internal.4.4.13
2.0.0-internal.4.3.13
2.0.0-internal.5.0.03
2.0.0-internal.4.4.03
2.0.0-dev.4.4.0.1625743
2.0.0-dev.4.4.0.1622533
2.0.0-dev.4.4.0.1620893
2.0.0-dev.4.4.0.1617843
2.0.0-dev.4.4.0.1616523
2.0.0-dev.4.4.0.1615163
2.0.0-dev.4.4.0.1613223
2.0.0-internal.4.3.02
2.0.0-internal.4.2.14
2.0.0-dev.4.3.0.1596192
2.0.0-dev.4.3.0.1586783
2.0.0-dev.4.3.0.1575312
2.0.0-internal.4.2.04
2.0.0-internal.3.4.5303
2.0.0-internal.4.1.23
2.0.0-internal.4.1.13
2.0.0-dev.4.2.0.1539172
2.0.0-internal.4.1.03
2.0.0-internal.4.0.63
2.0.0-internal.4.0.52
2.0.0-internal.4.0.43
2.0.0-dev.4.1.0.1482293
2.0.0-internal.4.0.33
2.0.0-internal.3.4.42
2.0.0-internal.3.4.33
2.0.0-internal.3.0.62
2.0.0-internal.4.0.23
2.0.0-internal.4.0.13
2.0.0-internal.3.4.23
2.0.0-internal.3.0.52
2.0.0-internal.4.0.02
2.0.0-internal.3.4.13
2.0.0-internal.3.4.03
2.0.0-internal.2.4.3302
2.0.0-internal.2.4.22
2.0.0-internal.3.0.42
1.3.6619
2.0.0-internal.3.0.32
2.0.0-internal.2.4.12
2.0.0-internal.3.0.22
1.3.546
1.2.82
2.0.0-internal.3.0.12
2.0.0-dev.3.1.0.1256722
2.0.0-internal.3.0.02
2.0.0-internal.2.4.02
2.0.0-internal.2.3.12
2.0.0-internal.1.4.9919
1.3.5-1214052
1.3.415
1.4.0-1210202
2.0.0-internal.2.3.02
1.3.32
2.0.0-internal.2.2.12
1.4.0-1159972
2.0.0-dev.2.3.0.1154672
2.0.0-internal.2.2.02
1.3.2-1129982
2.0.0-internal.2.1.22
2.0.0-internal.1.4.82
1.4.0-1119972
2.0.0-dev.2.2.0.1117232
2.0.0-internal.2.1.12
2.0.0-internal.2.0.42
2.0.0-internal.1.4.72
2.0.0-internal.2.1.02
1.3.12
1.4.0-1080572
2.0.0-internal.2.0.32
2.0.0-internal.2.0.22
1.4.0-1064382
2.0.0-internal.1.4.62
2.0.0-dev.1.4.6.1061352
2.0.0-internal.1.4.52
2.0.0-dev.1.4.5.1057452
2.0.0-internal.2.0.1260
2.0.0-internal.1.4.43
1.3.0378
2.0.0-internal.1.4.34
2.0.0-internal.2.0.0233
1.3.0-1005203
2.0.0-internal.1.4.22
2.0.0-internal.1.4.12
2.0.0-internal.1.4.02
2.0.0-internal.1.2.22
1.3.0-975152
2.0.0-internal.1.2.12
2.0.0-dev.1.3.0.965952
2.0.0-internal.1.1.42
0.59.4003520
1.2.730
2.0.0-internal.1.2.02
2.0.0-internal.1.1.32
1.2.631
2.0.0-internal.1.0.13
2.0.0-internal.1.1.22
0.59.20042
1.2.6-934522
2.0.0-internal.1.2.0.930712
2.0.0-internal.1.1.12
2.0.0-internal.1.1.02
1.2.526
1.2.42
1.2.34
1.2.3-849212
2.0.0-internal.1.0.02
2.0.0-internal.1.0.0.842532
1.2.3-839002
2.0.0-internal.1.0.0.831392
2.0.0-internal.1.0.0.826932
2.0.0-internal.1.0.0.826282
2.0.0-internal.1.0.0.821592
2.0.0-internal.1.0.0.816012
2.0.0-internal.1.0.0.815892
1.2.26
1.1.22
1.0.22
1.2.13
1.1.12
1.2.05
1.2.0-788372
1.2.0-778182
0.59.400229
1.1.038
1.1.0-762542
1.1.0-759722
1.0.111
0.59.400121
1.0.02
0.59.40003
0.59.4000-711302
0.59.4000-711282
0.59.30033
0.59.30023
0.59.30012
0.59.20032
0.59.20022
0.59.10012
0.59.30003
0.59.3000-671192
0.59.3000-666102
0.59.20012
0.59.20002
0.59.2000-632942
0.59.1001-622462
0.59.10002
0.59.1000-618982
0.59.2000-617293
0.58.3000-610812
0.56.11924
0.56.102
0.58.200257
0.58.20012
0.58.20002
0.58.2000-581332
0.58.10013
0.58.10005
0.57.29
0.56.92
0.58.0-559832
0.58.0-555612
0.56.82
0.57.12
0.56.72
0.57.02
0.56.62
0.56.54
0.55.43
0.56.42
0.57.0-510862
0.56.32
0.55.32
0.56.22
0.55.22
0.56.12
0.54.3527
0.56.04
0.56.0-498312
0.55.12
0.55.02
0.55.0-485512
0.54.22
0.54.12
0.54.02
0.54.0-474133
0.53.04
0.53.0-461052
0.50.42
0.52.16
0.51.34
0.52.03
0.52.0-446102
0.51.22
0.50.32
0.51.12
0.50.22
0.51.02
0.51.0-431242
0.50.168
0.50.04
0.50.0-415404
0.50.0-413654
0.49.2133
0.49.13
0.49.03
0.48.522
0.49.0-393134
0.48.43
0.49.0-390153
0.48.313
0.48.26
0.48.15
0.48.02
0.48.0-381422
0.48.0-381052
0.47.12
0.46.222
0.47.02
0.47.0-366994
0.47.0-363622
0.46.12
0.47.0-359612
0.47.0-359122
0.46.02
0.46.0-347842
0.45.4367
0.45.32
0.45.22
0.45.12
0.45.02
0.45.0-329482
0.44.12
0.39.83
0.44.02
0.44.0-308582
0.39.72
0.42.42
0.43.121
0.42.32
0.43.02
0.42.22
0.39.62
0.42.12
0.39.52
0.42.02
0.42.0-284102
0.41.43
0.41.32
0.41.22
0.42.0-276832
0.42.0-276772
0.42.0-276442
0.42.0-275492
0.41.12
0.40.320
0.41.02
0.41.0-271542
0.40.22
0.40.12
0.40.03
0.39.42
0.41.0-259572
0.40.0-258512
0.40.0-257192
0.39.32
0.39.22
0.39.12
0.39.02
0.39.0-232722
0.39.0-232542
0.38.42
0.38.32
0.38.22
0.38.12
0.38.02
0.38.0-220403
0.38.0-220003
0.38.0-219343
0.37.42
0.37.3-212872
0.37.32
0.37.22
0.37.12
0.37.02
0.37.0-205172
0.37.0-204272
0.36.2-203642
0.35.7-203432
0.35.63
0.36.12
0.35.52
0.36.02
0.36.0-188832
0.35.42
0.33.55
0.34.32
0.35.32
0.34.22
0.33.42
0.35.22
0.35.12
0.35.02
0.35.0-168872
0.35.0-161702
0.34.12
0.34.02
0.34.0-149422
0.33.32
0.32.51
0.32.41
0.33.22
0.33.12
0.33.01
0.33.0-137081
0.31.22
0.32.31
0.32.21
0.32.11
0.32.01
0.31.11
0.31.01
0.30.43
0.30.31
0.30.21
0.30.11
0.30.01
0.29.41
0.29.31
0.28.91
0.29.21
0.29.11
0.28.81
0.29.01
0.28.71
0.27.151
0.27.141
0.28.61
0.27.131
0.28.51
0.27.121
0.28.41
0.28.31
0.27.111
0.28.22
0.28.11
0.27.101
0.28.01
0.27.91
0.26.104
0.27.81
0.27.71
0.26.91
0.27.61
0.26.82
0.27.51
0.26.71
0.27.41
0.26.61
0.27.31
0.26.51
0.26.41
0.27.21
0.27.11
0.26.31
0.26.22
0.27.01
0.26.11
0.26.02
0.26.0-31771

Package Sidebar

Install

npm i @fluidframework/synthesize

Weekly Downloads

6,670

Version

2.4.0

License

MIT

Unpacked Size

108 kB

Total Files

68

Last publish

Collaborators

  • ms-fluid-bot