Skip to content

Commit

Permalink
Merge pull request #105 from mbti-nf-team/refactor/core-util-function…
Browse files Browse the repository at this point in the history
…-name

refactor(@nf-team/core): 의미가 모호한 core 유틸 함수명 변경
  • Loading branch information
saseungmin authored Nov 5, 2024
2 parents 3916286 + 3d495d8 commit 47388ee
Show file tree
Hide file tree
Showing 56 changed files with 148 additions and 127 deletions.
5 changes: 5 additions & 0 deletions .changeset/chilly-ladybugs-collect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"docs": minor
---

docs(@nf-team/core): 의미가 모호한 core 함수명 변경으로 인한 문서 업데이트
5 changes: 5 additions & 0 deletions .changeset/thirty-elephants-scream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nf-team/core": major
---

refactor(@nf-team/core): 의미가 모호한 core 유틸 함수명 변경
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
19 changes: 0 additions & 19 deletions apps/docs/docs/core/functions/checkEmpty.md

This file was deleted.

15 changes: 0 additions & 15 deletions apps/docs/docs/core/functions/checkNumber.md

This file was deleted.

15 changes: 15 additions & 0 deletions apps/docs/docs/core/functions/createNumberArray.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Function: createNumberArray()

> **createNumberArray**(`length`): `number`[]
## Parameters

**length**: `number`

## Returns

`number`[]

## Defined in

[utils.ts:61](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L61)
2 changes: 1 addition & 1 deletion apps/docs/docs/core/functions/emptyAThenB.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

## Defined in

[utils.ts:34](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/core/src/utils.ts#L34)
[utils.ts:31](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L31)
19 changes: 19 additions & 0 deletions apps/docs/docs/core/functions/ensureArray.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Function: ensureArray()

> **ensureArray**\<`T`\>(`value`?): `T`[]
## Type Parameters

**T**

## Parameters

**value?**: `T`[]

## Returns

`T`[]

## Defined in

[utils.ts:41](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L41)
15 changes: 0 additions & 15 deletions apps/docs/docs/core/functions/generateArrayOfNumber.md

This file was deleted.

17 changes: 17 additions & 0 deletions apps/docs/docs/core/functions/getNumberOrDefault.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Function: getNumberOrDefault()

> **getNumberOrDefault**(`value`?, `defaultValue`?): `number`
## Parameters

**value?**: `null` \| `number`

**defaultValue?**: `number` = `0`

## Returns

`number`

## Defined in

[utils.ts:26](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L26)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Function: removeNullable()
# Function: getStringOrDefault()

> **removeNullable**(`value`?, `replacementValue`?): `string`
> **getStringOrDefault**(`value`?, `replacementValue`?): `string`
## Parameters

Expand Down Expand Up @@ -33,4 +33,4 @@ console.log(result); // 'newValue';

## Defined in

[utils.ts:14](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/core/src/utils.ts#L14)
[utils.ts:14](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L14)
2 changes: 1 addition & 1 deletion apps/docs/docs/core/functions/isEmpty.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

## Defined in

[utils.ts:52](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/core/src/utils.ts#L52)
[utils.ts:49](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L49)
2 changes: 1 addition & 1 deletion apps/docs/docs/core/functions/trueOrFalse.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

## Defined in

[utils.ts:36](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/core/src/utils.ts#L36)
[utils.ts:33](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/core/src/utils.ts#L33)
8 changes: 4 additions & 4 deletions apps/docs/docs/core/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Functions

- [checkEmpty](functions/checkEmpty.md)
- [checkNumber](functions/checkNumber.md)
- [createNumberArray](functions/createNumberArray.md)
- [emptyAThenB](functions/emptyAThenB.md)
- [generateArrayOfNumber](functions/generateArrayOfNumber.md)
- [ensureArray](functions/ensureArray.md)
- [getNumberOrDefault](functions/getNumberOrDefault.md)
- [getStringOrDefault](functions/getStringOrDefault.md)
- [isEmpty](functions/isEmpty.md)
- [removeNullable](functions/removeNullable.md)
- [trueOrFalse](functions/trueOrFalse.md)
2 changes: 1 addition & 1 deletion apps/docs/docs/core/typedoc-sidebar.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const typedocSidebar = { items: [{"type":"category","label":"Functions","items":[{"type":"doc","id":"core/functions/checkEmpty","label":"checkEmpty"},{"type":"doc","id":"core/functions/checkNumber","label":"checkNumber"},{"type":"doc","id":"core/functions/emptyAThenB","label":"emptyAThenB"},{"type":"doc","id":"core/functions/generateArrayOfNumber","label":"generateArrayOfNumber"},{"type":"doc","id":"core/functions/isEmpty","label":"isEmpty"},{"type":"doc","id":"core/functions/removeNullable","label":"removeNullable"},{"type":"doc","id":"core/functions/trueOrFalse","label":"trueOrFalse"}]}]};
const typedocSidebar = { items: [{"type":"category","label":"Functions","items":[{"type":"doc","id":"core/functions/createNumberArray","label":"createNumberArray"},{"type":"doc","id":"core/functions/emptyAThenB","label":"emptyAThenB"},{"type":"doc","id":"core/functions/ensureArray","label":"ensureArray"},{"type":"doc","id":"core/functions/getNumberOrDefault","label":"getNumberOrDefault"},{"type":"doc","id":"core/functions/getStringOrDefault","label":"getStringOrDefault"},{"type":"doc","id":"core/functions/isEmpty","label":"isEmpty"},{"type":"doc","id":"core/functions/trueOrFalse","label":"trueOrFalse"}]}]};
module.exports = typedocSidebar.items;
4 changes: 2 additions & 2 deletions apps/docs/docs/fetch/classes/FetchError.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#### Defined in

[packages/fetch/src/fetch.ts:6](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L6)
[packages/fetch/src/fetch.ts:6](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L6)

## Properties

Expand Down Expand Up @@ -78,7 +78,7 @@ node\_modules/typescript/lib/lib.es5.d.ts:1069
#### Defined in

[packages/fetch/src/fetch.ts:6](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L6)
[packages/fetch/src/fetch.ts:6](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L6)

***

Expand Down
8 changes: 5 additions & 3 deletions apps/docs/docs/fetch/functions/fetchApi.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
# Function: fetchApi()

> **fetchApi**\<`T`, `K`\>(`__namedParameters`): `Promise`\<`T`\>
> **fetchApi**\<`T`, `K`, `B`\>(`__namedParameters`): `Promise`\<`T`\>
## Type Parameters

**T**

**K** = `unknown`

**B** = `unknown`

## Parameters

**\_\_namedParameters**: [`FetchApiRequest`](../interfaces/FetchApiRequest.md)\<`K`\>
**\_\_namedParameters**: [`FetchApiRequest`](../interfaces/FetchApiRequest.md)\<`K`, `B`\>

## Returns

`Promise`\<`T`\>

## Defined in

[packages/fetch/src/fetch.ts:28](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L28)
[packages/fetch/src/fetch.ts:32](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L32)
2 changes: 1 addition & 1 deletion apps/docs/docs/fetch/functions/paramsSerializer.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

## Defined in

[packages/fetch/src/fetch.ts:23](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L23)
[packages/fetch/src/fetch.ts:23](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L23)
18 changes: 10 additions & 8 deletions apps/docs/docs/fetch/interfaces/FetchApiRequest.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
# Interface: FetchApiRequest\<K\>
# Interface: FetchApiRequest\<K, B\>

## Type Parameters

**K** = `unknown`

**B** = `unknown`

## Properties

### body?

> `optional` **body**: `unknown`
> `optional` **body**: `B`
#### Defined in

[packages/fetch/src/fetch.ts:18](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L18)
[packages/fetch/src/fetch.ts:18](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L18)

***

Expand All @@ -22,7 +24,7 @@
#### Defined in

[packages/fetch/src/fetch.ts:20](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L20)
[packages/fetch/src/fetch.ts:20](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L20)

***

Expand All @@ -32,7 +34,7 @@
#### Defined in

[packages/fetch/src/fetch.ts:17](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L17)
[packages/fetch/src/fetch.ts:17](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L17)

***

Expand All @@ -42,7 +44,7 @@
#### Defined in

[packages/fetch/src/fetch.ts:16](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L16)
[packages/fetch/src/fetch.ts:16](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L16)

***

Expand All @@ -52,7 +54,7 @@
#### Defined in

[packages/fetch/src/fetch.ts:19](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L19)
[packages/fetch/src/fetch.ts:19](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L19)

***

Expand All @@ -62,4 +64,4 @@
#### Defined in

[packages/fetch/src/fetch.ts:15](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L15)
[packages/fetch/src/fetch.ts:15](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L15)
2 changes: 1 addition & 1 deletion apps/docs/docs/fetch/packages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @nf-team/fetch v1.1.0
# @nf-team/fetch v1.2.0

## Classes

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/docs/fetch/type-aliases/Method.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
## Defined in

[packages/fetch/src/fetch.ts:12](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/fetch/src/fetch.ts#L12)
[packages/fetch/src/fetch.ts:12](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/fetch/src/fetch.ts#L12)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/components/functions/ClientOnly.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ function ClintOnlyComponent() {

## Defined in

[packages/react/src/components/ClientOnly.tsx:22](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/components/ClientOnly.tsx#L22)
[packages/react/src/components/ClientOnly.tsx:22](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/components/ClientOnly.tsx#L22)
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

## Defined in

[packages/react/src/components/DelayRenderComponent.tsx:12](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/components/DelayRenderComponent.tsx#L12)
[packages/react/src/components/DelayRenderComponent.tsx:12](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/components/DelayRenderComponent.tsx#L12)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/components/functions/GlobalPortal.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ function SampleComponent() {

## Defined in

[packages/react/src/components/GlobalPortal.tsx:34](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/components/GlobalPortal.tsx#L34)
[packages/react/src/components/GlobalPortal.tsx:34](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/components/GlobalPortal.tsx#L34)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useActionKeyEvent.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

## Defined in

[packages/react/src/hooks/useActionKeyEvent.ts:6](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useActionKeyEvent.ts#L6)
[packages/react/src/hooks/useActionKeyEvent.ts:6](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useActionKeyEvent.ts#L6)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useBoolean.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ const [isOpen, openModal, closeModal, toggleModal] = useBoolean();

## Defined in

[packages/react/src/hooks/useBoolean.ts:13](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useBoolean.ts#L13)
[packages/react/src/hooks/useBoolean.ts:13](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useBoolean.ts#L13)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useDebounce.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@

## Defined in

[packages/react/src/hooks/useDebounce.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useDebounce.ts#L3)
[packages/react/src/hooks/useDebounce.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useDebounce.ts#L3)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useEffectOnce.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

## Defined in

[packages/react/src/hooks/useEffectOnce.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useEffectOnce.ts#L3)
[packages/react/src/hooks/useEffectOnce.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useEffectOnce.ts#L3)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useGeolocation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

## Defined in

[packages/react/src/hooks/useGeolocation.ts:15](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useGeolocation.ts#L15)
[packages/react/src/hooks/useGeolocation.ts:15](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useGeolocation.ts#L15)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useIsFirstRender.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

## Defined in

[packages/react/src/hooks/useIsFirstRender.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useIsFirstRender.ts#L3)
[packages/react/src/hooks/useIsFirstRender.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useIsFirstRender.ts#L3)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useIsMounted.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ useEffect(() => {

## Defined in

[packages/react/src/hooks/useIsMounted.ts:18](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useIsMounted.ts#L18)
[packages/react/src/hooks/useIsMounted.ts:18](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useIsMounted.ts#L18)
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ If present, effect will only activate if the values in the list change.

## Defined in

[packages/react/src/hooks/useIsomorphicLayoutEffect.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useIsomorphicLayoutEffect.ts#L3)
[packages/react/src/hooks/useIsomorphicLayoutEffect.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useIsomorphicLayoutEffect.ts#L3)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useLessThenScrollY.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

## Defined in

[packages/react/src/hooks/useLessThenScrollY.ts:5](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useLessThenScrollY.ts#L5)
[packages/react/src/hooks/useLessThenScrollY.ts:5](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useLessThenScrollY.ts#L5)
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ function SampleComponent() {

## Defined in

[packages/react/src/hooks/useResizeViewportHeight.ts:17](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useResizeViewportHeight.ts#L17)
[packages/react/src/hooks/useResizeViewportHeight.ts:17](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useResizeViewportHeight.ts#L17)
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@

## Defined in

[packages/react/src/hooks/useThrottleCallback.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useThrottleCallback.ts#L3)
[packages/react/src/hooks/useThrottleCallback.ts:3](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useThrottleCallback.ts#L3)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useTimeout.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

## Defined in

[packages/react/src/hooks/useTimeout.ts:5](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useTimeout.ts#L5)
[packages/react/src/hooks/useTimeout.ts:5](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useTimeout.ts#L5)
2 changes: 1 addition & 1 deletion apps/docs/docs/react/hooks/functions/useUnmount.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

## Defined in

[packages/react/src/hooks/useUnmount.ts:5](https://github.com/mbti-nf-team/frontend-libraries/blob/08b9d43288f72c3d793bb8f598c64f689d769c2e/packages/react/src/hooks/useUnmount.ts#L5)
[packages/react/src/hooks/useUnmount.ts:5](https://github.com/mbti-nf-team/frontend-libraries/blob/3916286534b50dbdcab9c2145adbaa464419b886/packages/react/src/hooks/useUnmount.ts#L5)
Loading

0 comments on commit 47388ee

Please sign in to comment.