mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 15:09:47 +00:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { getPageProperty } from 'notion-utils'
|
|
|
|
import type * as types from './types'
|
|
|
|
export function getPageTweet(
|
|
block: types.Block,
|
|
recordMap: types.ExtendedRecordMap
|
|
): string | null {
|
|
return getPageProperty('Tweet', block, recordMap)
|
|
}
|