This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import CalendarMonthIcon from '@mui/icons-material/CalendarMonth'; | |
| import Button from '@mui/material/Button'; | |
| import Grid from '@mui/material/Grid'; | |
| import Popover from '@mui/material/Popover'; | |
| import { AdapterDayjs } from '@mui/x-date-pickers/AdapterDayjs'; | |
| import { LocalizationProvider } from '@mui/x-date-pickers/LocalizationProvider'; | |
| import { StaticDatePicker } from '@mui/x-date-pickers/StaticDatePicker'; | |
| import dayjs, { type Dayjs } from 'dayjs'; | |
| import { useState } from 'react'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <MESSAGE xmlns="http://www.mismo.org/residential/2009/schemas" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:ULAD="http://www.datamodelextension.org/Schema/ULAD" | |
| xmlns:DU="http://www.datamodelextension.org/Schema/DU" | |
| MISMOReferenceModelIdentifier="3.4.032420160128" xmlns:xlink="http://www.w3.org/1999/xlink" | |
| xsi:schemaLocation="http://www.mismo.org/residential/2009/schemas DU_Wrapper_3.4.0_B324.xsd"> | |
| <ABOUT_VERSIONS> | |
| <ABOUT_VERSION> | |
| <CreatedDatetime>2019-02-22T14:24:17Z</CreatedDatetime> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Using https://github.com/google-github-actions/deploy-appengine | |
| # The following example service account permissions could be required for a Typescript project. | |
| # ***** | |
| # App Engine Admin | |
| # Cloud Build Editor | |
| # Compute Admin | |
| # Service Account User | |
| # Storage Admin | |
| # ***** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type IData = { [keys: string]: number }; | |
| const encrypted1: IData = { | |
| a: 10, | |
| b: 20, | |
| c: 30, | |
| }; | |
| const encrypted2: IData = { | |
| d: 40, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; | |
| import { Document, Types } from 'mongoose'; | |
| import { ICenter } from 'src/types'; | |
| import { Physician } from '.'; | |
| export type CenterDocument = Center & Document; | |
| @Schema() | |
| export class Center implements ICenter { | |
| @Prop() |