[API reference](https://evolu.dev/docs/api-reference) › [@evolu/common](https://evolu.dev/docs/api-reference/common) › [Type](https://evolu.dev/docs/api-reference/common/Type) › negativeDecimalString

```ts
const negativeDecimalString: BrandFactory<
  "NegativeDecimalString",
  DecimalString,
  NegativeDecimalStringError
>;
```

Defined in: [packages/common/src/Type.ts:7174](https://github.com/evoluhq/evolu/blob/f0109fb501a593010e858e39248dde1200eeb2d7/packages/common/src/Type.ts#L7174)

[DecimalString](https://evolu.dev/docs/api-reference/common/Type/variables/DecimalString) Brand requiring a value less than zero.

### Example

```ts

const Negative = negativeDecimalString(DecimalString);

assertOk(Negative.fromUnknown("-0.5"), "-0.5");
```